-
Notifications
You must be signed in to change notification settings - Fork 24.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove version.qualified from MainResponse #35412
Conversation
The fully qualified version will be returned as `version.number`
Pinging @elastic/es-core-infra |
@elasticmachine test this please |
@elasticmachine restest this please |
@@ -150,15 +150,15 @@ public void testLookupRemoteVersion() throws Exception { | |||
assertTrue(called.get()); | |||
called.set(false); | |||
sourceWithMockedRemoteCall(false, ContentType.APPLICATION_JSON, "main/5_0_0_alpha_3.json").lookupRemoteVersion(v -> { | |||
// V_5_0_0_alpha3 | |||
assertEquals(Version.fromId(5000003), v); | |||
// V_5_0_0 since we no longer consider qualifier in Version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since 7 I think.
@elasticmachine test this please |
@elasticmachine test this please |
@nik9000 can you take another look ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Concluding the discussions after merging #35334.
version.qualified
is removed from the main response andthe fully qualified version will be returned as
version.number
.